priority inversion - definizione. Che cos'è priority inversion
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Cosa (chi) è priority inversion - definizione

UNDESIRABLE COMPUTING SCHEDULING SCENARIO

priority inversion         
<parallel> The state of a concurrent system where a high priority task is waiting for a low priority task which is waiting for a medium priority task. The system may become unstable and crash under these circumstances. In an operating system that uses multiple tasks, each task (or context) may be given a priority. These priorities help the scheduler decide which task to run next. Consider tasks, L, M, and H, with priorities Low, Medium, and High. M is running and H is blocked waiting for some resource that is held by L. So long as any task with a priority higher than L is runable, it will prevent task L, and thus task H, from running. Priority inversion is generally considered either as a high-level design failure or an implementation issue to be taken into account depending on who is talking. Most operating systems have methods in place to prevent or take inversion into account. Priority inheritance is one method. The most public instance of priority inversion is the repeated 'fail-safe' rebooting of the {priority inversionmbj/Mars_Pathfinder/Mars_Pathfinder.html">Mars Pathfinder (http://research.microsoft.com/priority inversionmbj/Mars_Pathfinder/Mars_Pathfinder.html)}. base station ('Sagan Memorial Station'). (2003-06-04)
Priority inversion         
In computer science, priority inversion is a scenario in scheduling in which a high priority task is indirectly superseded by a lower priority task effectively inverting the assigned priorities of the tasks. This violates the priority model that high priority tasks can only be prevented from running by higher priority tasks.
Inversion (geology)         
  • upright=1.8
RELATIVE UPLIFT OF A SEDIMENTARY BASIN OR SIMILAR STRUCTURE AS A RESULT OF CRUSTAL SHORTENING
Basin inversion; Tectonic inversion
In structural geology inversion or basin inversion relates to the relative uplift of a sedimentary basin or similar structure as a result of crustal shortening. This normally excludes uplift developed in the footwalls of later extensional faults, or uplift caused by mantle plumes.

Wikipedia

Priority inversion

In computer science, priority inversion is a scenario in scheduling in which a high priority task is indirectly superseded by a lower priority task effectively inverting the assigned priorities of the tasks. This violates the priority model that high-priority tasks can only be prevented from running by higher-priority tasks. Inversion occurs when there is a resource contention with a low-priority task that is then preempted by a medium-priority task.